home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr08 / myb_203.zip / MYB_203.ZIP / ENVELOPE.MRG < prev    next >
Text File  |  1993-05-04  |  826b  |  30 lines

  1. <*
  2.    ENVELOPE.MRG - Sample merge print file for CONTACT database.
  3.    ~~~~~~~~~~~~
  4.    Merge print the customer's name and address on to a standard size 10
  5.    business envelope.
  6.  
  7.    NOTE: If you are printing to a LaserJet or any other type of printer where
  8.    the envelope needs to be fed into the printer in landscape mode, then you
  9.    will also need to set your printer to print in this mode.
  10.  
  11. >
  12. <# _NewLine := _LF + SPACE(35) >
  13. John Smith
  14. XYZ Company Inc.
  15. 101 Street Avenue
  16. Anywhere, Anystate
  17. 12345
  18.  
  19.  
  20. < TRIMLINES (
  21.      _NewLine + TRIM( TRIM (SAL)+" "+FIRST_NAME) +" "+ LAST_NAME +
  22.      _NewLine + TITLE     +
  23.      _NewLine + DEPARTMENT+
  24.      _NewLine + COMPANY   +
  25.      _NewLine + ADDRESS_1 +
  26.      _NewLine + ADDRESS_2 +
  27.      _NewLine + TRIM (CITY)+ ", " + STATE +
  28.      _NewLine + ZIP_CODE )
  29. >
  30.